23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
34 lines
741 B
Nix
34 lines
741 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, primecount
|
|
, cython_3
|
|
, cysignals
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "primecountpy";
|
|
version = "0.1.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "78fe7cc32115f0669a45d7c90faaf39f7ce3939e39e2e7e5f14c17fe4bff0676";
|
|
};
|
|
|
|
buildInputs = [ primecount ];
|
|
|
|
propagatedBuildInputs = [ cython_3 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;
|
|
};
|
|
}
|