nixpkgs/pkgs/development/python-modules/coreschema/default.nix
Robert Schütz 2aa6bce7d9 maintainers: remove ivegotasthma
He disappeared from GitHub and doesn't reply to emails.
2021-05-12 13:31:03 +02:00

35 lines
664 B
Nix

{
lib,
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 = ''
cd ./tests
pytest
'';
meta = with lib; {
description = "Python client library for Core Schema";
homepage = "https://github.com/ivegotasthma/python-coreschema";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}