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

26 lines
603 B
Nix
Raw Normal View History

2018-10-04 21:06:26 +01:00
{ stdenv, fetchPypi, buildPythonPackage
, mock, nose
}:
buildPythonPackage rec {
pname = "dpath";
2020-06-06 07:47:06 +01:00
version = "2.0.1";
2018-10-04 21:06:26 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:06 +01:00
sha256 = "bea06b5f4ff620a28dfc9848cf4d6b2bfeed34238edeb8ebe815c433b54eb1fa";
2018-10-04 21:06:26 +01:00
};
checkInputs = [ mock nose ];
checkPhase = ''
nosetests
'';
meta = with stdenv.lib; {
homepage = "https://github.com/akesterson/dpath-python";
2018-10-04 21:06:26 +01:00
license = [ licenses.mit ];
description = "A python library for accessing and searching dictionaries via /slashed/paths ala xpath";
maintainers = [ maintainers.mmlb ];
};
}