pythonPackages.pyRFC3339: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
ef769d741c
commit
d9d19b2de9
26
pkgs/development/python-modules/pyrfc3339/default.nix
Normal file
26
pkgs/development/python-modules/pyrfc3339/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user