python3Packages.xmltodict: use pytest over nosetests

This commit is contained in:
Martin Weinelt 2022-03-05 15:45:58 +01:00
parent c18eab5a31
commit 3cef6effe9
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,28 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, coverage
, nose
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "xmltodict";
version = "0.12.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "50d8c638ed7ecb88d90561beedbf720c9b4e851a9fa6c47ebd64e99d166d8a21";
};
checkInputs = [ coverage nose ];
checkInputs = [
pytestCheckHook
];
checkPhase = ''
nosetests
'';
meta = {
meta = with lib; {
description = "Makes working with XML feel like you are working with JSON";
homepage = "https://github.com/martinblech/xmltodict";
license = lib.licenses.mit;
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}