mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +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`.
18 lines
505 B
Nix
18 lines
505 B
Nix
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyWebDAV";
|
|
version = "0.9.8";
|
|
disabled = isPy3k;
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1v10vg79h85milnq8w7yd75qq5z6297ywkn9b2kxajldzwqxn3ji";
|
|
};
|
|
meta = with stdenv.lib; {
|
|
homepage = http://code.google.com/p/pywebdav/;
|
|
description = "WebDAV library including a standalone server for python";
|
|
maintainers = with maintainers; [ johbo ];
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|