My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/atomiclong/default.nix

21 lines
543 B

{ lib, buildPythonPackage, fetchPypi, pytest, cffi }:
buildPythonPackage rec {
pname = "atomiclong";
version = "0.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "1gjbc9lvpkgg8vj7dspif1gz9aq4flkhxia16qj6yvb7rp27h4yb";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ cffi ];
meta = with lib; {
description = "Long data type with atomic operations using CFFI";
homepage = "https://github.com/dreid/atomiclong";
license = licenses.mit;
maintainers = with maintainers; [ robbinch ];
};
}