pythonPackages.cfgv: init at 1.1.0
This commit is contained in:
parent
a1f03c09af
commit
eed74d16a1
22
pkgs/development/python-modules/cfgv/default.nix
Normal file
22
pkgs/development/python-modules/cfgv/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, six }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cfgv";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1akm5xdbi5kckgnhhfj6qavjwakm44cwqzhfx2ycgh7mkym1qyfi";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
# Tests not included in PyPI tarball
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Validate configuration and produce human readable error messages";
|
||||||
|
homepage = https://github.com/asottile/cfgv;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -1520,6 +1520,8 @@ in {
|
|||||||
|
|
||||||
cherrypy = callPackage ../development/python-modules/cherrypy {};
|
cherrypy = callPackage ../development/python-modules/cherrypy {};
|
||||||
|
|
||||||
|
cfgv = callPackage ../development/python-modules/cfgv { };
|
||||||
|
|
||||||
cftime = callPackage ../development/python-modules/cftime {};
|
cftime = callPackage ../development/python-modules/cftime {};
|
||||||
|
|
||||||
cjson = callPackage ../development/python-modules/cjson { };
|
cjson = callPackage ../development/python-modules/cjson { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user