pythonPackages.coreapi: init at 2.3.3

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

View file

@ -0,0 +1,44 @@
{
stdenv,
fetchFromGitHub,
buildPythonPackage,
django,
coreschema,
itypes,
uritemplate,
requests,
pytest,
}:
buildPythonPackage rec {
pname = "coreapi";
version = "2.3.3";
src = fetchFromGitHub {
repo = "python-client";
owner = "core-api";
rev = version;
sha256 = "1c6chm3q3hyn8fmjv23qgc79ai1kr3xvrrkp4clbqkssn10k7mcw";
};
propagatedBuildInputs = [
django
coreschema
itypes
uritemplate
requests
];
checkInputs = [ pytest ];
checkPhase = ''
mv coreapi coreapi.hidden
pytest tests
'';
meta = with stdenv.lib; {
description = "Python client library for Core API";
homepage = https://github.com/core-api/python-client;
license = licenses.bsd3;
maintainers = with maintainers; [ ivegotasthma ];
};
}

View file

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