forked from mirrors/nixpkgs
21 lines
491 B
Nix
21 lines
491 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi, nose }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "voluptuous";
|
||
|
version = "0.10.5";
|
||
|
name = "${pname}-${version}";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "15i3gaap8ilhpbah1ffc6q415wkvliqxilc6s69a4rinvkw6cx3s";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ nose ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Voluptuous is a Python data validation library";
|
||
|
homepage = http://alecthomas.github.io/voluptuous/;
|
||
|
license = licenses.bsd3;
|
||
|
};
|
||
|
}
|