From b6714f59cce26ddc831ca4a213e8f56476184fb1 Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Mon, 10 Sep 2018 18:33:48 +0200 Subject: initial commit --- .../development/python-modules/isodate/default.nix | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pkgs/development/python-modules/isodate/default.nix (limited to 'pkgs/development/python-modules/isodate/default.nix') diff --git a/pkgs/development/python-modules/isodate/default.nix b/pkgs/development/python-modules/isodate/default.nix new file mode 100644 index 0000000..72ad4c2 --- /dev/null +++ b/pkgs/development/python-modules/isodate/default.nix @@ -0,0 +1,27 @@ +{ stdenv, buildPythonPackage, fetchPypi, python, isPy3k, six }: + +buildPythonPackage rec { + pname = "isodate"; + version = "0.6.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "1n7jkz68kk5pwni540pr5zdh99bf6ywydk1p5pdrqisrawylldif"; + }; + + propagatedBuildInputs = [ six ]; + + # 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.bsd3; + maintainers = with maintainers; [ stesie ]; + }; +} -- cgit v1.2.3