python310Packages.dpath: update disabled

- add format
This commit is contained in:
Fabian Affolter
2023-03-29 09:15:40 +02:00
parent 1074e51f15
commit 28182088aa
@@ -2,23 +2,29 @@
, buildPythonPackage
, fetchPypi
, hypothesis
, isPy27
, pythonOlder
, mock
, nose2
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "dpath";
version = "2.1.5";
format = "setuptools";
disabled = isPy27; # uses python3 imports
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-zNlk24ObqtSqggYStLhzGwn0CiRdQBtyMVbOTvRbIrc=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
hypothesis
mock