nixpkgs/pkgs/development/tools/bashate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
760 B
Nix
Raw Normal View History

2021-03-27 17:40:29 +01:00
{ lib
, Babel
, buildPythonApplication
, fetchPypi
, fixtures
, mock
, pbr
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonApplication rec {
pname = "bashate";
2021-09-23 06:19:44 +02:00
version = "2.1.0";
2021-03-27 17:40:29 +01:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2021-09-23 06:19:44 +02:00
sha256 = "a0df143639715dc2fb6cf9aa6907e4a372d6f0a43afeffc55c5fb3ecfe3523c8";
2021-03-27 17:40:29 +01: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 ];
};
}