mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
34 lines
640 B
Nix
34 lines
640 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "docrep";
|
|
version = "0.3.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "ed8a17e201abd829ef8da78a0b6f4d51fb99a4cbd0554adbed3309297f964314";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
# tests not packaged with PyPi download
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Python package for docstring repetition";
|
|
homepage = "https://github.com/Chilipp/docrep";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = with lib.maintainers; [ costrouc ];
|
|
};
|
|
}
|