biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / cloudsmith-api / default.nix
blob8fd6f490f042217c34af95acd654f0a16af87b7d
2   lib,
3   buildPythonPackage,
4   certifi,
5   fetchPypi,
6   python-dateutil,
7   pythonOlder,
8   six,
9   urllib3,
12 buildPythonPackage rec {
13   pname = "cloudsmith-api";
14   version = "2.0.13";
15   format = "wheel";
17   disabled = pythonOlder "3.7";
19   src = fetchPypi {
20     pname = "cloudsmith_api";
21     inherit format version;
22     hash = "sha256-xPPARaxclTRy7thJXtXaMK0F5/91q7o35LyzSmx1HPU=";
23   };
25   propagatedBuildInputs = [
26     certifi
27     python-dateutil
28     six
29     urllib3
30   ];
32   # Wheels have no tests
33   doCheck = false;
35   pythonImportsCheck = [ "cloudsmith_api" ];
37   meta = with lib; {
38     description = "Cloudsmith API Client";
39     homepage = "https://github.com/cloudsmith-io/cloudsmith-api";
40     license = licenses.asl20;
41     maintainers = [ ];
42   };