python3Packages.pyxb: init at 1.2.6
This commit is contained in:
parent
18b8f5efe3
commit
3dd45fac6d
2 changed files with 33 additions and 0 deletions
31
pkgs/development/python-modules/pyxb/default.nix
Normal file
31
pkgs/development/python-modules/pyxb/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "PyXB";
|
||||
version = "1.2.6";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1d17pyixbfvjyi2lb0cfp0ch8wwdf44mmg3r5pwqhyyqs66z601a";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyxb"
|
||||
];
|
||||
|
||||
# tests don't complete
|
||||
# https://github.com/pabigot/pyxb/issues/130
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python XML Schema Bindings";
|
||||
homepage = "https://github.com/pabigot/pyxb";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
|
@ -6887,6 +6887,8 @@ in {
|
|||
|
||||
pyx = callPackage ../development/python-modules/pyx { };
|
||||
|
||||
pyxb = callPackage ../development/python-modules/pyxb { };
|
||||
|
||||
pyxbe = callPackage ../development/python-modules/pyxbe { };
|
||||
|
||||
pyxdg = callPackage ../development/python-modules/pyxdg { };
|
||||
|
|
Loading…
Reference in a new issue