python27Packages.python-stdnum: 1.10 -> 1.11

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python2.7-python-stdnum/versions
This commit is contained in:
R. RyanTM 2019-06-02 14:47:23 -07:00 committed by Mario Rodas
parent 97aba37876
commit a0d1442ed8
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

@ -1,14 +1,19 @@
{ lib, fetchPypi, buildPythonPackage, isPy3k }:
{ lib, fetchPypi, buildPythonPackage, nose }:
buildPythonPackage rec {
version = "1.10";
version = "1.11";
pname = "python-stdnum";
# Failing tests and dependency issue on Py3k
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0prs63q8zdgwr5cxc5a43zvsm66l0gf9jk19qdf85m6isnp5186a";
sha256 = "d5f0af1bee9ddd9a20b398b46ce062dbd4d41fcc9646940f2667256a44df3854";
};
checkInputs = [ nose ];
checkPhase = ''
nosetests
'';
meta = {
homepage = https://arthurdejong.org/python-stdnum/;
description = "Python module to handle standardized numbers and codes";