Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 22 lines 509 B view raw
1{ lib, buildPythonPackage, fetchPypi, pyyaml }: 2 3buildPythonPackage rec { 4 pname = "aspy.yaml"; 5 version = "1.1.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "5eaaacd0886e8b581f0e4ff383fb6504720bb2b3c7be17307724246261a41adf"; 10 }; 11 12 propagatedBuildInputs = [ pyyaml ]; 13 14 # Tests not included in PyPI tarball 15 doCheck = false; 16 17 meta = with lib; { 18 description = "A few extensions to pyyaml"; 19 homepage = https://github.com/asottile/aspy.yaml; 20 license = licenses.mit; 21 }; 22}