mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
python3Packages.devtools: add missing dependencies
This commit is contained in:
parent
ecd529b078
commit
b688707a06
@ -1,9 +1,19 @@
|
||||
{ buildPythonPackage, pythonOlder, fetchFromGitHub, lib, pygments
|
||||
, pytestCheckHook, pytest-mock }:
|
||||
{ lib
|
||||
, asttokens
|
||||
, buildPythonPackage
|
||||
, executing
|
||||
, fetchFromGitHub
|
||||
, pygments
|
||||
, pytest-mock
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "devtools";
|
||||
version = "0.8.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
@ -13,11 +23,25 @@ buildPythonPackage rec {
|
||||
sha256 = "0yavcbxzxi1nfa1k326gsl03y8sadi5z5acamwd8b1bsiv15p757";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pygments ];
|
||||
propagatedBuildInputs = [
|
||||
asttokens
|
||||
executing
|
||||
pygments
|
||||
];
|
||||
|
||||
checkInputs = [ pytestCheckHook pytest-mock ];
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
pytest-mock
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "devtools" ];
|
||||
disabledTests = [
|
||||
# Test for Windows32
|
||||
"test_print_subprocess"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"devtools"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python's missing debug print command and other development tools";
|
||||
|
Loading…
Reference in New Issue
Block a user