diff options
| author | Frederik Rietdijk <fridh@fridh.nl> | 2017-05-27 11:25:35 +0200 |
|---|---|---|
| committer | Frederik Rietdijk <fridh@fridh.nl> | 2017-05-27 11:30:21 +0200 |
| commit | 959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c (patch) | |
| tree | 60c0df9d9c5e876fe757c28bf11bd18762ce4180 /pkgs/development/python-modules/python-stdnum | |
| parent | dce1c26e5d4bd25d21e1abc3397e02d6def044a8 (diff) | |
Python: add pname attributes to libraries
so that we can use the update script.
Diffstat (limited to 'pkgs/development/python-modules/python-stdnum')
| -rw-r--r-- | pkgs/development/python-modules/python-stdnum/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python-stdnum/default.nix b/pkgs/development/python-modules/python-stdnum/default.nix index fe85b7bb0d34..8c5732049c7b 100644 --- a/pkgs/development/python-modules/python-stdnum/default.nix +++ b/pkgs/development/python-modules/python-stdnum/default.nix @@ -1,8 +1,9 @@ { lib, fetchurl, buildPythonPackage, isPy3k }: buildPythonPackage rec { - name = "python-stdnum-${version}"; version = "1.5"; + pname = "python-stdnum"; + name = "${pname}-${version}"; # Failing tests and dependency issue on Py3k disabled = isPy3k; src = fetchurl { |
