depot/third_party/nixpkgs/pkgs/development/python-modules/intbitset/default.nix

32 lines
619 B
Nix
Raw Normal View History

{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "intbitset";
version = "3.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-tDG3CAlTZvz9Pi2pLq0TEPhl3DyYuWQS1N6VNNNokEE=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"intbitset"
];
meta = with lib; {
description = "C-based extension implementing fast integer bit sets";
homepage = "https://github.com/inveniosoftware/intbitset";
license = licenses.lgpl3Only;
maintainers = teams.determinatesystems.members;
};
}