nixpkgs/pkgs/development/python-modules/cliff/default.nix

57 lines
1008 B
Nix
Raw Normal View History

2019-07-11 18:47:07 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pbr
, prettytable
, pyparsing
, six
, stevedore
, pyyaml
, unicodecsv
, cmd2
, pytest
, mock
, testtools
, fixtures
2019-07-11 18:47:07 +00:00
}:
buildPythonPackage rec {
pname = "cliff";
2020-11-29 14:04:25 +00:00
version = "3.5.0";
2019-07-11 18:47:07 +00:00
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:25 +00:00
sha256 = "5bfb684b5fcdff0afaaccd1298a376c0e62e644c46b7e9abc034595b41fe1759";
2019-07-11 18:47:07 +00:00
};
propagatedBuildInputs = [
pbr
prettytable
pyparsing
six
stevedore
pyyaml
cmd2
unicodecsv
];
# remove version constraints
postPatch = ''
sed -i '/cmd2/c\cmd2' requirements.txt
'';
checkInputs = [ fixtures mock pytest testtools ];
# add some tests
checkPhase = ''
pytest cliff/tests/test_{utils,app,command,help,lister}.py \
-k 'not interactive_mode'
'';
2019-07-11 18:47:07 +00:00
meta = with lib; {
description = "Command Line Interface Formulation Framework";
homepage = "https://docs.openstack.org/cliff/latest/";
2019-07-11 18:47:07 +00:00
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}