summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-stdnum
diff options
context:
space:
mode:
authorRyan Trinkle <ryan.trinkle@gmail.com>2017-11-03 10:53:00 -0400
committerGitHub <noreply@github.com>2017-11-03 10:53:00 -0400
commitded1281f4519bfdeea6c79eb6857f00619d9859d (patch)
tree0562858f7368f6e9ae65a730d2e4ea750d40f31e /pkgs/development/python-modules/python-stdnum
parentdce2c258ac33ee1cd3b3e852b36e1d8fa11f33a1 (diff)
parent74260a4922e678348eac91f4aa5767a3f5a039a4 (diff)
Merge branch 'master' into docker-dirlinks
Diffstat (limited to 'pkgs/development/python-modules/python-stdnum')
-rw-r--r--pkgs/development/python-modules/python-stdnum/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/python-stdnum/default.nix b/pkgs/development/python-modules/python-stdnum/default.nix
index fe85b7bb0d34..a78b1ffbee26 100644
--- a/pkgs/development/python-modules/python-stdnum/default.nix
+++ b/pkgs/development/python-modules/python-stdnum/default.nix
@@ -1,16 +1,17 @@
{ lib, fetchurl, buildPythonPackage, isPy3k }:
buildPythonPackage rec {
- name = "python-stdnum-${version}";
- version = "1.5";
+ version = "1.7";
+ pname = "python-stdnum";
+ name = "${pname}-${version}";
# Failing tests and dependency issue on Py3k
disabled = isPy3k;
src = fetchurl {
url = "mirror://pypi/p/python-stdnum/${name}.tar.gz";
- sha256 = "0zkkpjy4gc161dkyxjmingjw48glljlqqrl4fh2k5idf0frkvzhh";
+ sha256 = "987c25e1047e8742131bcf29dac7a406987adb1463465749e2daaba8cb19d264";
};
meta = {
- homepage = "http://arthurdejong.org/python-stdnum/";
+ homepage = http://arthurdejong.org/python-stdnum/;
description = "Python module to handle standardized numbers and codes";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.lgpl2Plus;