mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
python3Packages.ush: add six to check deps
This commit is contained in:
parent
9d5a47f739
commit
a386ad87bd
@ -1,4 +1,9 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook}:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ush";
|
||||
@ -11,7 +16,10 @@ buildPythonPackage rec {
|
||||
sha256 = "sha256-eL3vG3yS02enbLYorKvvYKbju9HInffUhrZgkodwhvo=";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
six
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# seems to be outdated?
|
||||
|
Loading…
Reference in New Issue
Block a user