schema: init at 0.6.6
This commit is contained in:
parent
21e135c8bd
commit
c8f55331df
21
pkgs/development/python-modules/schema/default.nix
Normal file
21
pkgs/development/python-modules/schema/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
|
||||||
|
pname = "schema";
|
||||||
|
version = "0.6.6";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1lw28j9w9vxyigg7vkfkvi6ic9lgjkdnfvnxdr7pklslqvzmk2vm";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Library for validating Python data structures";
|
||||||
|
homepage = https://github.com/keleshev/schema;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -8044,6 +8044,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
schema = callPackage ../development/python-modules/schema {};
|
||||||
|
|
||||||
svg-path = buildPythonPackage rec {
|
svg-path = buildPythonPackage rec {
|
||||||
name = "svg.path-${version}";
|
name = "svg.path-${version}";
|
||||||
version = "2.0b1";
|
version = "2.0b1";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user