Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi, nose }: 2 3buildPythonPackage rec { 4 pname = "voluptuous"; 5 version = "0.11.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0mplkcpb5d8wjf8vk195fys4y6a3wbibiyf708imw33lphfk9g1a"; 10 }; 11 12 checkInputs = [ nose ]; 13 14 meta = with stdenv.lib; { 15 description = "Voluptuous is a Python data validation library"; 16 homepage = "http://alecthomas.github.io/voluptuous/"; 17 license = licenses.bsd3; 18 }; 19}