summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobbin C <robbinch33@gmail.com>2015-07-01 18:45:22 +0800
committerRobbin C <robbinch33@gmail.com>2015-07-01 22:31:34 +0800
commit1969397eadb5097e6818514d7dacb043121b8359 (patch)
tree60610568a3c57e6759870101884cedc9fb070af8
parentd94285788f854b91dc34b9b084b291606d3b1a60 (diff)
downloadnixpkgs-1969397eadb5097e6818514d7dacb043121b8359.tar
nixpkgs-1969397eadb5097e6818514d7dacb043121b8359.tar.gz
nixpkgs-1969397eadb5097e6818514d7dacb043121b8359.tar.bz2
nixpkgs-1969397eadb5097e6818514d7dacb043121b8359.tar.lz
nixpkgs-1969397eadb5097e6818514d7dacb043121b8359.tar.xz
nixpkgs-1969397eadb5097e6818514d7dacb043121b8359.tar.zst
nixpkgs-1969397eadb5097e6818514d7dacb043121b8359.zip
atomiclong: init at 0.1.1.
-rw-r--r--pkgs/top-level/python-packages.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index bfe21546f5a..304f1f44ad4 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -633,6 +633,27 @@ let
     };
   };
 
+  atomiclong = buildPythonPackage rec {
+    version = "0.1.1";
+    name = "atomiclong-${version}";
+
+    src = pkgs.fetchurl {
+      url = "https://pypi.python.org/packages/source/a/atomiclong/atomiclong-${version}.tar.gz";
+      sha256 = "1gjbc9lvpkgg8vj7dspif1gz9aq4flkhxia16qj6yvb7rp27h4yb";
+    };
+
+    buildInputs = with self; [ pytest ];
+    propagatedBuildInputs = with self; [ cffi ];
+
+    meta = {
+      description = "Long data type with atomic operations using CFFI";
+      homepage = https://github.com/dreid/atomiclong;
+      license = licenses.mit;
+      maintainers = with maintainers; [ robbinch ];
+    };
+
+  };
+
   atomicwrites = buildPythonPackage rec {
     version = "0.1.0";
     name = "atomicwrites-${version}";