Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 466 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, six }: 2 3buildPythonPackage rec { 4 pname = "jdatetime"; 5 version = "3.6.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "a589e35f0dab89283c1a3de9d70ed6cf657932aaed8e8ce1b0e5801aaab1da67"; 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}