mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
24 lines
699 B
Nix
24 lines
699 B
Nix
{ stdenv, fetchFromGitHub, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "radicale_infcloud";
|
|
version = "2017-07-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Unrud";
|
|
repo = "RadicaleInfCloud";
|
|
rev = "972757bf4c6be8b966ee063e3741ced29ba8169f";
|
|
sha256 = "1c9ql9nv8kwi791akwzd19dcqzd916i7yxzbnrismzw4f5bhgzsk";
|
|
};
|
|
|
|
doCheck = false; # Tries to import radicale, circular dependency
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/Unrud/RadicaleInfCloud/;
|
|
description = "Integrate InfCloud into Radicale's web interface";
|
|
license = with licenses; [ agpl3 gpl3 ];
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ aneeshusa ];
|
|
};
|
|
}
|