nixpkgs/pkgs/development/python-modules/deprecation/default.nix

26 lines
585 B
Nix
Raw Normal View History

2018-04-11 10:19:47 +00:00
{ lib, buildPythonPackage, fetchPypi, python, packaging, unittest2 }:
buildPythonPackage rec {
pname = "deprecation";
version = "2.0.7";
2018-04-11 10:19:47 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1vcjy6flqbzgjh4zhcs0sl83b946wxrlsx5miliz0ik1d9kjyff0";
2018-04-11 10:19:47 +00:00
};
propagatedBuildInputs = [ packaging ];
checkInputs = [ unittest2 ];
checkPhase = ''
${python.interpreter} -m unittest discover
'';
meta = with lib; {
description = "A library to handle automated deprecations";
homepage = https://deprecation.readthedocs.io/;
license = licenses.asl20;
};
}