summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-httpbin
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/pytest-httpbin
parentdce1c26e5d4bd25d21e1abc3397e02d6def044a8 (diff)
downloadnixpkgs-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar
nixpkgs-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.gz
nixpkgs-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.bz2
nixpkgs-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.lz
nixpkgs-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.xz
nixpkgs-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.tar.zst
nixpkgs-959842a9c72ed6cc8566e23c1ce17e9ef0d8ec0c.zip
Python: add pname attributes to libraries
so that we can use the update script.
Diffstat (limited to 'pkgs/development/python-modules/pytest-httpbin')
-rw-r--r--pkgs/development/python-modules/pytest-httpbin/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pytest-httpbin/default.nix b/pkgs/development/python-modules/pytest-httpbin/default.nix
index 34a2bf7e31c..6f6f79109d9 100644
--- a/pkgs/development/python-modules/pytest-httpbin/default.nix
+++ b/pkgs/development/python-modules/pytest-httpbin/default.nix
@@ -10,7 +10,8 @@
 }:
 
 buildPythonPackage rec {
-  name = "pytest-httpbin-${version}";
+  pname = "pytest-httpbin";
+  name = "${pname}-${version}";
   version = "0.2.3";
 
   src = fetchFromGitHub {