python3Packages.warlock: enable tests

This commit is contained in:
Fabian Affolter 2022-02-09 16:23:55 +01:00 committed by Jonathan Ringer
parent ba3b21dc06
commit 626dc5f00a

View File

@ -1,27 +1,51 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
, fetchFromGitHub
, pythonOlder
, jsonpatch
, jsonschema
, jsonpointer
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "warlock";
version = "1.3.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "a093c4d04b42b7907f69086e476a766b7639dca50d95edc83aef6aeab9db2090";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "bcwaldon";
repo = pname;
rev = version;
hash = "sha256-59V4KOwjs/vhA3F3E0j3p5L4JnKPgcExN+mgSWs0Cn0=";
};
propagatedBuildInputs = [ six jsonpatch jsonschema jsonpointer ];
propagatedBuildInputs = [
jsonpatch
jsonschema
six
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace requirements.txt \
--replace "jsonschema>=0.7,<4" "jsonschema"
sed -i "/--cov/d" pytest.ini
'';
pythonImportsCheck = [
"warlock"
];
meta = with lib; {
homepage = "https://github.com/bcwaldon/warlock";
description = "Python object model built on JSON schema and JSON patch";
homepage = "https://github.com/bcwaldon/warlock";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}