python3Packages.dpath: 2.0.6 -> 2.1.3

This commit is contained in:
Martin Weinelt
2023-01-05 01:08:59 +01:00
parent 0d884bf03f
commit be4701a197
@@ -4,26 +4,26 @@
, hypothesis
, isPy27
, mock
, nose
, nose2
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "dpath";
version = "2.0.6";
version = "2.1.3";
disabled = isPy27; # uses python3 imports
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Wh3a5SIz+8jvgbFfuFBzqBEmu0NpjT86G2qvVhpGzcA=";
sha256 = "sha256-0aeg5kJ9CkFWx5LILK8fAQlgP2is55LjbKRZb9LLjZ0=";
};
# use pytest as nosetests hangs
checkInputs = [
hypothesis
mock
nose
nose2
pytestCheckHook
];