mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
pythonPackages.coreschema: init at 0.0.4
This commit is contained in:
parent
63fa75e34c
commit
1a29857705
34
pkgs/development/python-modules/coreschema/default.nix
Normal file
34
pkgs/development/python-modules/coreschema/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user