Skip to content

Commit

Permalink
PyWebDAV: Fix src url
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Leathers authored and rycee committed Sep 15, 2017
1 parent 2594437 commit 95f88c4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkgs/development/python-modules/pywebdav/default.nix
@@ -1,18 +1,18 @@
{ lib, fetchurl, buildPythonPackage, isPy3k }:
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:

buildPythonPackage rec {
pname = "pywebdav";
name = "${pname}-${version}";
pname = "PyWebDAV";
version = "0.9.8";
name = "${pname}-${version}";
disabled = isPy3k;
src = fetchurl {
url = "mirror://pypi/p/pywebdav/${name}.tar.gz";
src = fetchPypi {
inherit pname version;
sha256 = "1v10vg79h85milnq8w7yd75qq5z6297ywkn9b2kxajldzwqxn3ji";
};
meta = {
meta = with stdenv.lib; {
homepage = http://code.google.com/p/pywebdav/;
description = "WebDAV library including a standalone server for python";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.gpl2Plus;
maintainers = with maintainers; [ johbo ];
license = licenses.gpl2Plus;
};
}

0 comments on commit 95f88c4

Please sign in to comment.