pythonPackages.isodate: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
854ec9ac53
commit
e9e5fd377e
30
pkgs/development/python-modules/isodate/default.nix
Normal file
30
pkgs/development/python-modules/isodate/default.nix
Normal file
@@ -0,0 +1,30 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "isodate";
|
||||
version = "0.5.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "42105c41d037246dc1987e36d96f3752ffd5c0c24834dd12e4fdbe1e79544e31";
|
||||
};
|
||||
|
||||
# Judging from SyntaxError
|
||||
doCheck = !(isPy3k);
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover -s src/isodate/tests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "ISO 8601 date/time parser";
|
||||
homepage = http://cheeseshop.python.org/pypi/isodate;
|
||||
license = licenses.bsd0;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user