nixpkgs/pkgs/development/python-modules/coreapi/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

45 lines
764 B
Nix

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