nixpkgs/pkgs/development/python-modules/clint/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

46 lines
941 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, python
, mock
, blessings
, nose
, pillow
, args
, pkgs
}:
buildPythonPackage rec {
pname = "clint";
version = "0.5.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1an5lkkqk1zha47198p42ji3m94xmzx1a03dn7866m87n4r4q8h5";
};
LC_ALL="en_US.UTF-8";
propagatedBuildInputs = [ pillow blessings args ];
# nose-progressive and clint are not actively maintained
# no longer compatible as behavior demand 2to3, which was removed
# in setuptools>=58
doCheck = false;
nativeCheckInputs = [ mock nose pkgs.glibcLocales ];
checkPhase = ''
${python.interpreter} test_clint.py
'';
pythonImportsCheck = [ "clint" ];
meta = with lib; {
homepage = "https://github.com/kennethreitz/clint";
description = "Python Command Line Interface Tools";
license = licenses.isc;
maintainers = with maintainers; [ domenkozar ];
};
}