Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 464 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, six }: 2 3buildPythonPackage rec { 4 pname = "jdatetime"; 5 version = "3.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "42d0d08c0d36dcf1c4e1ddb1d10338d0dffb94105a02d74b6ea655ee8dd93cc2"; 10 }; 11 12 propagatedBuildInputs = [ six ]; 13 14 meta = with stdenv.lib; { 15 description = "Jalali datetime binding for python"; 16 homepage = https://pypi.python.org/pypi/jdatetime; 17 license = licenses.psfl; 18 }; 19}