Files
nixpkgs/pkgs/development/python-modules/primecountpy/default.nix
T
Martin Weinelt 528354e66c python312Packages.cython: 0.29.36 -> 3.0.9
Folds the cython_3 attribute into the primary cython attribute and
migrates all packages from the versioned attribute.

The old version will be provided through the cython_0 attribute in an
effort to phase it out.
2024-03-27 18:35:05 +01:00

35 lines
737 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, primecount
, cython
, cysignals
}:
buildPythonPackage rec {
pname = "primecountpy";
version = "0.1.0";
format = "setuptools";
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;
};
}