3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/bashate/default.nix

44 lines
760 B
Nix
Raw Normal View History

2021-03-27 16:40:29 +00:00
{ lib
, Babel
, buildPythonApplication
, fetchPypi
, fixtures
, mock
, pbr
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonApplication rec {
pname = "bashate";
2021-09-23 05:19:44 +01:00
version = "2.1.0";
2021-03-27 16:40:29 +00:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2021-09-23 05:19:44 +01:00
sha256 = "a0df143639715dc2fb6cf9aa6907e4a372d6f0a43afeffc55c5fb3ecfe3523c8";
2021-03-27 16:40:29 +00:00
};
propagatedBuildInputs = [
Babel
pbr
setuptools
];
checkInputs = [
fixtures
mock
pytestCheckHook
];
pythonImportsCheck = [ "bashate" ];
meta = with lib; {
description = "Style enforcement for bash programs";
homepage = "https://opendev.org/openstack/bashate";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}