pythonPackages.coreschema: init at 0.0.4

This commit is contained in:
ivegotasthma 2019-08-12 06:23:18 +02:00
parent 63fa75e34c
commit 1a29857705
No known key found for this signature in database
GPG key ID: 09AC52AEA87817A4
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{
stdenv,
fetchFromGitHub,
buildPythonPackage,
jinja2,
pytest,
}:
buildPythonPackage rec {
pname = "coreschema";
version = "0.0.4";
src = fetchFromGitHub {
repo = "python-coreschema";
owner = "core-api";
rev = version;
sha256 = "027pc753mkgbb3r1v1x7dsdaarq93drx0f79ppvw9pfkcjcq6wb1";
};
propagatedBuildInputs = [ jinja2 ];
checkInputs = [ pytest ];
checkPhase = ''
mv coreschema coreschema.hidden
pytest tests
'';
meta = with stdenv.lib; {
description = "Python client library for Core Schema";
homepage = https://github.com/ivegotasthma/python-coreschema;
license = licenses.bsd3;
maintainers = with maintainers; [ ivegotasthma ];
};
}

View file

@ -1800,6 +1800,8 @@ in {
cookies = callPackage ../development/python-modules/cookies { };
coreschema = callPackage ../development/python-modules/coreschema { };
coveralls = callPackage ../development/python-modules/coveralls { };
coverage = callPackage ../development/python-modules/coverage { };