python.pkgs.jsonpickle: fixup build
This commit is contained in:
parent
224d7b129c
commit
c75fec1a79
@ -2,6 +2,8 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pytest
|
, pytest
|
||||||
|
, setuptools_scm
|
||||||
|
, toml
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -15,7 +17,15 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
checkPhase = "pytest tests/jsonpickle_test.py";
|
nativeBuildInputs = [
|
||||||
|
setuptools_scm
|
||||||
|
toml
|
||||||
|
];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
rm pytest.ini
|
||||||
|
pytest tests/jsonpickle_test.py
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Python library for serializing any arbitrary object graph into JSON";
|
description = "Python library for serializing any arbitrary object graph into JSON";
|
||||||
|
Loading…
Reference in New Issue
Block a user