nixpkgs/pkgs/development/python-modules/logutils/default.nix
c0bw3b 69b393ace5 Treewide: update some problematic homepages
These URLs are reported as problematic by Repology.
It could be a permanent redirection
or the page does not exist anymore
2019-12-08 10:21:29 -08:00

22 lines
415 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "logutils";
version = "0.3.5";
src = fetchPypi {
inherit pname version;
sha256 = "bc058a25d5c209461f134e1f03cab637d66a7a5ccc12e593db56fbb279899a82";
};
meta = with stdenv.lib; {
description = "Logging utilities";
homepage = "https://bitbucket.org/vinay.sajip/logutils/";
license = licenses.bsd0;
};
}