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