mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #13647 from DamienCassou/khard-python2-only
khard: force Python2
This commit is contained in:
commit
5652d3407f
1 changed files with 3 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl, pkgs, pythonPackages }:
|
||||
{ stdenv, fetchurl, pkgs, python2Packages }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
python2Packages.buildPythonApplication rec {
|
||||
version = "0.8.1";
|
||||
name = "khard-${version}";
|
||||
namePrefix = "";
|
||||
|
@ -10,7 +10,7 @@ pythonPackages.buildPythonApplication rec {
|
|||
sha256 = "13axfrs96isirx0c483545xdmjwwfq1k7yy92xpk7l184v71rgi1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
propagatedBuildInputs = with python2Packages; [
|
||||
atomicwrites
|
||||
configobj
|
||||
vobject
|
||||
|
@ -18,10 +18,6 @@ pythonPackages.buildPythonApplication rec {
|
|||
pyyaml
|
||||
];
|
||||
|
||||
buildInputs = with pythonPackages; [
|
||||
pkgs.vdirsyncer
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/scheibler/khard;
|
||||
description = "Console carddav client";
|
||||
|
|
Loading…
Reference in a new issue