python3Packages.xmlschema: 1.1.0 -> 1.2.2

This commit is contained in:
Jonathan Ringer 2020-07-07 14:43:54 -07:00 committed by Jon
parent f7199eba46
commit 3e42013517

View File

@ -1,22 +1,23 @@
{ lib, buildPythonPackage, fetchFromGitHub { lib, buildPythonPackage, fetchFromGitHub
, elementpath , elementpath
, lxml
, pytest , pytest
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.1.0"; version = "1.2.2";
pname = "xmlschema"; pname = "xmlschema";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sissaschool"; owner = "sissaschool";
repo = "xmlschema"; repo = "xmlschema";
rev = "v${version}"; rev = "v${version}";
sha256 = "1h8321jb6q3dhlh3608y3f3sbbzfd3jg1psyirxkrm4w5xs3lbvy"; sha256 = "04rlcm5777cv7aw9mf0z1xrj8cn2rljfzs9i2za6sdk6h1ngpj3q";
}; };
propagatedBuildInputs = [ elementpath ]; propagatedBuildInputs = [ elementpath ];
checkInputs = [ pytest ]; checkInputs = [ lxml pytest ];
postPatch = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace setup.py \