mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
python.pkgs.voluptuous: init at 0.10.5
Needed by elasticsearch-curator.
This commit is contained in:
parent
fc99ee5ceb
commit
b513fc7420
20
pkgs/development/python-modules/voluptuous/default.nix
Normal file
20
pkgs/development/python-modules/voluptuous/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -23290,6 +23290,7 @@ EOF
|
||||
|
||||
ephem = callPackage ../development/python-modules/ephem { };
|
||||
|
||||
voluptuous = callPackage ../development/python-modules/voluptuous { };
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
Loading…
Reference in New Issue
Block a user