Skip to content

Commit

Permalink
python.pkgs.xmltodict: 0.9.2 -> 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Dec 9, 2017
1 parent 54aafd1 commit 3e1748f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 16 deletions.
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/xmltodict/default.nix
@@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, coverage
, nose
}:

buildPythonPackage rec {
pname = "xmltodict";
version = "0.11.0";

src = fetchPypi {
inherit pname version;
sha256 = "8f8d7d40aa28d83f4109a7e8aa86e67a4df202d9538be40c0cb1d70da527b0df";
};

checkInputs = [ coverage nose ];

checkPhase = ''
nosetests
'';

meta = {
description = "Makes working with XML feel like you are working with JSON";
homepage = https://github.com/martinblech/xmltodict;
license = lib.licenses.mit;
};
}
17 changes: 1 addition & 16 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -20559,22 +20559,7 @@ EOF
};
});

xmltodict = buildPythonPackage (rec {
name = "xmltodict-0.9.2";

src = pkgs.fetchurl {
url = "mirror://pypi/x/xmltodict/${name}.tar.gz";
sha256 = "00crqnjh1kbvcgfnn3b8c7vq30lf4ykkxp1xf3pf7mswr5l1wp97";
};

buildInputs = with self; [ coverage nose ];

meta = {
description = "Makes working with XML feel like you are working with JSON";
homepage = https://github.com/martinblech/xmltodict;
license = licenses.mit;
};
});
xmltodict = callPackage ../development/python-modules/xmltodict { };

xarray = callPackage ../development/python-modules/xarray { };

Expand Down

0 comments on commit 3e1748f

Please sign in to comment.