summary refs log tree commit diff
path: root/pkgs/development/python-modules/nanomsg-python
diff options
context:
space:
mode:
authorDanylo Hlynskyi <abcz2.uprola@gmail.com>2019-01-22 01:23:48 +0200
committerGitHub <noreply@github.com>2019-01-22 01:23:48 +0200
commitf5836d2d8251683b7ece210675e046e11561e7a7 (patch)
tree36bd96d6a0ea8283cf798eecd04fec4203b9334e /pkgs/development/python-modules/nanomsg-python
parentbb02d518e09ed77d1502d412a82ed7357d2c4851 (diff)
downloadnixpkgs-f5836d2d8251683b7ece210675e046e11561e7a7.tar
nixpkgs-f5836d2d8251683b7ece210675e046e11561e7a7.tar.gz
nixpkgs-f5836d2d8251683b7ece210675e046e11561e7a7.tar.bz2
nixpkgs-f5836d2d8251683b7ece210675e046e11561e7a7.tar.lz
nixpkgs-f5836d2d8251683b7ece210675e046e11561e7a7.tar.xz
nixpkgs-f5836d2d8251683b7ece210675e046e11561e7a7.tar.zst
nixpkgs-f5836d2d8251683b7ece210675e046e11561e7a7.zip
python packages: cleanup nanomsg-python
@dotlambda has an eagle eye
Diffstat (limited to 'pkgs/development/python-modules/nanomsg-python')
-rw-r--r--pkgs/development/python-modules/nanomsg-python/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/nanomsg-python/default.nix b/pkgs/development/python-modules/nanomsg-python/default.nix
index 40b7f8ffac5..b6e323ff9c6 100644
--- a/pkgs/development/python-modules/nanomsg-python/default.nix
+++ b/pkgs/development/python-modules/nanomsg-python/default.nix
@@ -11,13 +11,13 @@ buildPythonPackage rec {
     sha256 = "1qgybcpmm9xxrn39alcgdcpvwphgm1glkbnwx0ljpz4nd1jsnyrl";
   };
 
-  propagatedBuildInputs = [ nanomsg ];
+  buildInputs = [ nanomsg ];
 
   # Tests requires network connections
   doCheck = false;
 
   meta = with stdenv.lib; {
-    description = "Bindings for nanomsg.";
+    description = "Bindings for nanomsg";
     homepage = https://github.com/tonysimpson/nanomsg-python;
     license = licenses.mit;
     maintainers = with maintainers; [ bgamari ];