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/primecountpy/default.nix

33 lines
712 B

{ lib
, fetchPypi
, buildPythonPackage
, primecount
, cython
, cysignals
}:
buildPythonPackage rec {
pname = "primecountpy";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "78fe7cc32115f0669a45d7c90faaf39f7ce3939e39e2e7e5f14c17fe4bff0676";
};
buildInputs = [ primecount ];
propagatedBuildInputs = [ cython cysignals ];
# depends on pytest-cython for "pytest --doctest-cython"
doCheck = false;
pythonImportsCheck = [ "primecountpy" ];
meta = with lib; {
description = "Cython interface for C++ primecount library";
homepage = "https://github.com/dimpase/primecountpy/";
maintainers = teams.sage.members;
license = licenses.gpl3Only;
};
}