summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiohttp
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-01-23 17:30:09 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-01-30 11:01:05 +0100
commitc68a1651e7b81b47a0d55891b496b71c5281e786 (patch)
tree4796ce9c37191159eff68b290015bdd80907f862 /pkgs/development/python-modules/aiohttp
parent9d392684c241b410c995c7a5ee3f7990c1a1973b (diff)
downloadnixpkgs-c68a1651e7b81b47a0d55891b496b71c5281e786.tar
nixpkgs-c68a1651e7b81b47a0d55891b496b71c5281e786.tar.gz
nixpkgs-c68a1651e7b81b47a0d55891b496b71c5281e786.tar.bz2
nixpkgs-c68a1651e7b81b47a0d55891b496b71c5281e786.tar.lz
nixpkgs-c68a1651e7b81b47a0d55891b496b71c5281e786.tar.xz
nixpkgs-c68a1651e7b81b47a0d55891b496b71c5281e786.tar.zst
nixpkgs-c68a1651e7b81b47a0d55891b496b71c5281e786.zip
pythonPackages.aiohttp: remove name attribute
Diffstat (limited to 'pkgs/development/python-modules/aiohttp')
-rw-r--r--pkgs/development/python-modules/aiohttp/cors.nix2
-rw-r--r--pkgs/development/python-modules/aiohttp/default.nix3
2 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aiohttp/cors.nix b/pkgs/development/python-modules/aiohttp/cors.nix
index ab9595ec2b9..9da239b524a 100644
--- a/pkgs/development/python-modules/aiohttp/cors.nix
+++ b/pkgs/development/python-modules/aiohttp/cors.nix
@@ -3,7 +3,7 @@
 buildPythonPackage rec {
   pname = "aiohttp-cors";
   version = "0.6.0";
-  name = "${pname}-${version}";
+
   src = fetchPypi {
     inherit pname version;
     sha256 = "1r0mb4dw0dc1lpi54dk5vxqs06nyhvagp76lyrvk7rd94z5mjkd4";
diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix
index f1eb7a64d79..17737c33986 100644
--- a/pkgs/development/python-modules/aiohttp/default.nix
+++ b/pkgs/development/python-modules/aiohttp/default.nix
@@ -14,7 +14,6 @@
 buildPythonPackage rec {
   pname = "aiohttp";
   version = "2.3.9";
-  name = "${pname}-${version}";
 
   src = fetchPypi {
     inherit pname version;
@@ -33,4 +32,4 @@ buildPythonPackage rec {
     license = with lib.licenses; [ asl20 ];
     homepage = https://github.com/KeepSafe/aiohttp/;
   };
-}
\ No newline at end of file
+}