evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / bindep / default.nix
blob7feb91d8d9713c6fbebbb879c235c8aa33e5050e
2   lib,
3   buildPythonPackage,
4   distro,
5   fetchPypi,
6   packaging,
7   parsley,
8   pbr,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "bindep";
14   version = "2.11.0";
15   pyproject = true;
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-rLLyWbzh/RUIhzR5YJu95bmq5Qg3hHamjWtqGQAufi8=";
20   };
22   env.PBR_VERSION = version;
24   build-system = [
25     distro
26     pbr
27     setuptools
28   ];
30   dependencies = [
31     parsley
32     pbr
33     packaging
34     distro
35   ];
37   # Checks moved to 'passthru.tests' to workaround infinite recursion
38   doCheck = false;
40   pythonImportsCheck = [ "bindep" ];
42   meta = with lib; {
43     description = "Bindep is a tool for checking the presence of binary packages needed to use an application / library";
44     homepage = "https://docs.opendev.org/opendev/bindep/latest/";
45     license = licenses.asl20;
46     mainProgram = "bindep";
47     maintainers = teams.openstack.members;
48   };