25 lines
436 B
Nix
25 lines
436 B
Nix
{ buildPythonPackage
|
|
, pythonRelaxDepsHook
|
|
, unittestCheckHook
|
|
, fetchPypi
|
|
, redis
|
|
, six
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "rejson";
|
|
version = "0.5.6";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-vs3hNSAAUAi3ls5WyxKOsiUC18addIJv81HNQ79zvJc=";
|
|
};
|
|
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
pythonRelaxDeps = [
|
|
"redis"
|
|
];
|
|
propagatedBuildInputs = [
|
|
redis
|
|
six
|
|
];
|
|
doCheck = false;
|
|
}
|