1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage rec {
7 pname = "python-reprshed";
8 version = "1.0.6";
9 format = "setuptools";
10
11 src = fetchFromGitHub {
12 owner = "mentalisttraceur";
13 repo = "python-reprshed";
14 rev = "v${version}";
15 hash = "sha256-XfmiewI74eDLKTAU6Ed76QXfJYMRb+idRACl6CW07ME=";
16 };
17
18 pythonImportsCheck = [
19 "reprshed"
20 ];
21
22 meta = with lib; {
23 homepage = "https://github.com/mentalisttraceur/python-reprshed";
24 description = "A toolshed for writing great __repr__ methods quickly and easily";
25 license = licenses.bsd0;
26 maintainers = with maintainers; [ netali ];
27 };
28}