nixpkgs/pkgs/development/python-modules/deprecated/default.nix
2021-01-31 05:04:11 +00:00

23 lines
630 B
Nix

{ lib, fetchPypi, buildPythonPackage,
wrapt, pytest, tox }:
buildPythonPackage rec {
pname = "Deprecated";
version = "1.2.11";
src = fetchPypi {
inherit pname version;
sha256 = "471ec32b2755172046e28102cd46c481f21c6036a0ec027521eba8521aa4ef35";
};
propagatedBuildInputs = [ wrapt ];
checkInputs = [ pytest ];
meta = with lib; {
homepage = "https://github.com/tantale/deprecated";
description = "Python @deprecated decorator to deprecate old python classes, functions or methods";
platforms = platforms.all;
license = licenses.mit;
maintainers = with maintainers; [ tilpner ];
};
}