about summary refs log tree commit diff
diff options
context:
space:
mode:
-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 40b7f8ffac5e..b6e323ff9c69 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 ];