Merge pull request #47887 from mmlb/python-dpath
pythonPackages.dpath: init at 1.4.2
This commit is contained in:
25
pkgs/development/python-modules/dpath/default.nix
Normal file
25
pkgs/development/python-modules/dpath/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchPypi, buildPythonPackage
|
||||
, mock, nose
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dpath";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0gr7816pnzbyh9h1ia0qz0q1f9zfzacwb8dc36js8hw8x14myqqg";
|
||||
};
|
||||
|
||||
checkInputs = [ mock nose ];
|
||||
checkPhase = ''
|
||||
nosetests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/akesterson/dpath-python;
|
||||
license = [ licenses.mit ];
|
||||
description = "A python library for accessing and searching dictionaries via /slashed/paths ala xpath";
|
||||
maintainers = [ maintainers.mmlb ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user