python3Packages.reprshed: init at 1.0.6

This commit is contained in:
Jennifer Graul 2023-07-25 16:14:11 +02:00
parent 7ce0abe77d
commit 3575aa76c5
No known key found for this signature in database
GPG key ID: 144607B4C4EE1E6E
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "python-reprshed";
version = "1.0.6";
format = "setuptools";
src = fetchFromGitHub {
owner = "mentalisttraceur";
repo = "python-reprshed";
rev = "v${version}";
hash = "sha256-XfmiewI74eDLKTAU6Ed76QXfJYMRb+idRACl6CW07ME=";
};
pythonImportsCheck = [
"reprshed"
];
meta = with lib; {
homepage = "https://github.com/mentalisttraceur/python-reprshed";
description = "A toolshed for writing great __repr__ methods quickly and easily";
license = licenses.bsd0;
maintainers = with maintainers; [ netali ];
};
}

View file

@ -10906,6 +10906,8 @@ self: super: with self; {
reproject = callPackage ../development/python-modules/reproject { };
reprshed = callPackage ../development/python-modules/reprshed { };
reqif = callPackage ../development/python-modules/reqif { };
requests-aws4auth = callPackage ../development/python-modules/requests-aws4auth { };