mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
pythonPackages.klaus: do not use python.pkgs
This commit is contained in:
parent
6a99b46463
commit
21956ab8b1
@ -1,6 +1,6 @@
|
||||
{ lib, python, fetchFromGitHub }:
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, isPy3k, six, flask, pygments, dulwich, httpauth, humanize, pytest, requests, python-ctags3, mock }:
|
||||
|
||||
python.pkgs.buildPythonPackage rec {
|
||||
buildPythonPackage rec {
|
||||
pname = "klaus";
|
||||
version = "1.5.1";
|
||||
|
||||
@ -16,11 +16,11 @@ python.pkgs.buildPythonPackage rec {
|
||||
--replace "mkdir -p \$builddir" "mkdir -p \$builddir && pwd"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with python.pkgs; [
|
||||
propagatedBuildInputs = [
|
||||
six flask pygments dulwich httpauth humanize
|
||||
];
|
||||
|
||||
checkInputs = with python.pkgs; [
|
||||
checkInputs = [
|
||||
pytest requests python-ctags3
|
||||
] ++ lib.optional (!isPy3k) mock;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user