summary refs log tree commit diff
path: root/pkgs/development/python-modules/tables
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-05-27 11:25:35 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-05-27 11:30:21 +0200
commit959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c (patch)
tree60c0df9d9c5e876fe757c28bf11bd18762ce4180 /pkgs/development/python-modules/tables
parentdce1c26e5d4bd25d21e1abc3397e02d6def044a8 (diff)
downloadnixlib-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar
nixlib-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.gz
nixlib-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.bz2
nixlib-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.lz
nixlib-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.xz
nixlib-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.zst
nixlib-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.zip
Python: add pname attributes to libraries
so that we can use the update script.
Diffstat (limited to 'pkgs/development/python-modules/tables')
-rw-r--r--pkgs/development/python-modules/tables/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/tables/default.nix b/pkgs/development/python-modules/tables/default.nix
index 7faad8ec4f46..c35369747dd9 100644
--- a/pkgs/development/python-modules/tables/default.nix
+++ b/pkgs/development/python-modules/tables/default.nix
@@ -3,7 +3,8 @@
 
 buildPythonPackage rec {
   version = "3.3.0";
-  name = "tables-${version}";
+  pname = "tables";
+  name = "${pname}-${version}";
 
   src = fetchurl {
     url = "mirror://pypi/t/tables/${name}.tar.gz";