Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 six, 6 pythonOlder, 7}: 8 9buildPythonPackage rec { 10 pname = "jdatetime"; 11 version = "5.0.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 hash = "sha256-LMYD2RPA2OMokoRU09KVJhywN+mVAif2fJYpq0cQ/fk="; 19 }; 20 21 propagatedBuildInputs = [ six ]; 22 23 pythonImportsCheck = [ "jdatetime" ]; 24 25 meta = with lib; { 26 description = "Jalali datetime binding"; 27 homepage = "https://github.com/slashmili/python-jalali"; 28 license = licenses.psfl; 29 maintainers = [ ]; 30 }; 31}