stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / pyprobables / default.nix
blobaccb2be4ea0a3b16f285db567856397d258f1d4d
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "pyprobables";
12   version = "0.6.1";
13   pyproject = true;
15   disabled = pythonOlder "3.8";
17   src = fetchFromGitHub {
18     owner = "barrust";
19     repo = "pyprobables";
20     tag = "v${version}";
21     hash = "sha256-yJUYGfy+d+Xfk1DUDvBeWk0EcNPuW4DcUHx3G3jzEdc=";
22   };
24   build-system = [ setuptools ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   pythonImportsCheck = [ "probables" ];
30   meta = with lib; {
31     description = "Probabilistic data structures";
32     homepage = "https://github.com/barrust/pyprobables";
33     changelog = "https://github.com/barrust/pyprobables/blob/v${version}/CHANGELOG.md";
34     license = licenses.mit;
35     maintainers = with maintainers; [ fab ];
36   };