Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / primepy / default.nix
blob583aa3919dcf0b78e2f995df712a853bc3094b08
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , wheel
6 }:
8 buildPythonPackage rec {
9   pname = "primepy";
10   version = "1.3";
11   pyproject = true;
13   src = fetchPypi {
14     pname = "primePy";
15     inherit version;
16     hash = "sha256-Jf1+JTRLB4mlmEx12J8FT88fGAvvIMmY5L77rJLeRmk=";
17   };
19   nativeBuildInputs = [
20     setuptools
21     wheel
22   ];
24   pythonImportsCheck = [ "primePy" ];
26   meta = with lib; {
27     description = "This module contains several useful functions to work with prime numbers. from primePy import primes";
28     homepage = "https://pypi.org/project/primePy/";
29     license = licenses.mit;
30     maintainers = with maintainers; [ matthewcroughan ];
31   };