mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
ddar: explicitly use python2
This commit is contained in:
parent
c6a4f9af60
commit
3b490c653c
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{ lib, buildPythonApplication, fetchFromGitHub, protobuf, roundup }:
|
||||
{ lib, python2, fetchFromGitHub, roundup }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
python2.pkgs.buildPythonApplication rec {
|
||||
pname = "ddar";
|
||||
version = "1.0";
|
||||
|
||||
|
@ -23,7 +23,7 @@ buildPythonApplication rec {
|
|||
make -f Makefile.prep synctus/ddar_pb2.py
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ protobuf ];
|
||||
propagatedBuildInputs = with python2.pkgs; [ protobuf ];
|
||||
|
||||
checkInputs = [ roundup ];
|
||||
|
||||
|
|
|
@ -1147,7 +1147,7 @@ with pkgs;
|
|||
|
||||
dateutils = callPackage ../tools/misc/dateutils { };
|
||||
|
||||
ddar = pythonPackages.callPackage ../tools/backup/ddar { };
|
||||
ddar = callPackage ../tools/backup/ddar { };
|
||||
|
||||
ddate = callPackage ../tools/misc/ddate { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue