mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
35 lines
712 B
Nix
35 lines
712 B
Nix
|
{
|
||
|
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 ];
|
||
|
};
|
||
|
}
|