pythonPackages.pyRFC3339: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 15:47:52 -04:00
committed by Frederik Rietdijk
parent ef769d741c
commit d9d19b2de9
2 changed files with 27 additions and 12 deletions

View File

@@ -0,0 +1,26 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pytz
, nose
}:
buildPythonPackage rec {
pname = "pyRFC3339";
version = "0.2";
src = fetchPypi {
inherit pname version;
sha256 = "1pp648xsjaw9h1xq2mgwzda5wis2ypjmzxlksc1a8grnrdmzy155";
};
propagatedBuildInputs = [ pytz ];
buildInputs = [ nose ];
meta = with stdenv.lib; {
description = "Generate and parse RFC 3339 timestamps";
homepage = https://github.com/kurtraschke/pyRFC3339;
license = licenses.mit;
};
}