schema: init at 0.6.6

This commit is contained in:
Samuel Leathers 2017-09-16 17:13:29 -04:00
parent 21e135c8bd
commit c8f55331df
2 changed files with 23 additions and 0 deletions

View 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;
};
}

View File

@ -8044,6 +8044,8 @@ in {
};
};
schema = callPackage ../development/python-modules/schema {};
svg-path = buildPythonPackage rec {
name = "svg.path-${version}";
version = "2.0b1";