nixpkgs/pkgs/development/python-modules/dpath/default.nix

25 lines
697 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, isPy27
2020-06-08 19:03:19 +00:00
, mock, pytestCheckHook, nose, hypothesis
2018-10-04 20:06:26 +00:00
}:
buildPythonPackage rec {
pname = "dpath";
2020-06-06 06:47:06 +00:00
version = "2.0.1";
disabled = isPy27; # uses python3 imports
2018-10-04 20:06:26 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:06 +00:00
sha256 = "bea06b5f4ff620a28dfc9848cf4d6b2bfeed34238edeb8ebe815c433b54eb1fa";
2018-10-04 20:06:26 +00:00
};
2020-06-08 19:03:19 +00:00
# use pytest as nosetests hangs
checkInputs = [ mock nose pytestCheckHook hypothesis ];
2018-10-04 20:06:26 +00:00
meta = with lib; {
homepage = "https://github.com/akesterson/dpath-python";
2018-10-04 20:06:26 +00:00
license = [ licenses.mit ];
description = "A python library for accessing and searching dictionaries via /slashed/paths ala xpath";
maintainers = [ maintainers.mmlb ];
};
}