Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 519 B view raw
1{ lib, buildPythonPackage, fetchPypi, six }: 2 3buildPythonPackage rec { 4 pname = "cfgv"; 5 version = "2.0.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0i1iam461bd6bphd402r7payr2m71xivy5zp6k2gjnv67fa8gczd"; 10 }; 11 12 propagatedBuildInputs = [ six ]; 13 14 # Tests not included in PyPI tarball 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Validate configuration and produce human readable error messages"; 19 homepage = https://github.com/asottile/cfgv; 20 license = licenses.mit; 21 }; 22}