Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 20 lines 521 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "strict-rfc3339"; 5 version = "0.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "5cad17bedfc3af57b399db0fed32771f18fc54bbd917e85546088607ac5e1277"; 10 }; 11 12 doCheck = false; 13 14 meta = with stdenv.lib; { 15 homepage = "https://github.com/danielrichman/strict-rfc3339"; 16 license = licenses.gpl3; 17 description = "Strict, simple, lightweight RFC3339 functions"; 18 maintainers = with maintainers; [ vanschelven ]; 19 }; 20}