Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / reprshed / default.nix
blob1aa9469aab29c0896d225a84bf196279cc10fe11
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 }:
6 buildPythonPackage rec {
7   pname = "python-reprshed";
8   version = "1.0.6";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "mentalisttraceur";
13     repo = "python-reprshed";
14     rev = "v${version}";
15     hash = "sha256-XfmiewI74eDLKTAU6Ed76QXfJYMRb+idRACl6CW07ME=";
16   };
18   pythonImportsCheck = [
19     "reprshed"
20   ];
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   };