pythonPackages.loadcredential: Remove package

This commit is contained in:
Tom Hubrecht 2024-06-21 09:18:48 +02:00
parent 1c0bec2499
commit e8e98e51dd
2 changed files with 0 additions and 36 deletions

View File

@ -1,34 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "loadcredential";
version = "1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Tom-Hubrecht";
repo = "loadcredential";
rev = "v${version}";
hash = "sha256-GXpMqGLDmDnTGa9cBYe0CP3Evm5sQ3AK9u6k3mLAW34=";
};
build-system = [
setuptools
wheel
];
pythonImportsCheck = [ "loadcredential" ];
meta = {
description = "Simple python package to read credentials passed through systemd's LoadCredential, with a fallback on env variables ";
homepage = "https://github.com/Tom-Hubrecht/loadcredential";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ thubrecht ];
};
}

View File

@ -7033,8 +7033,6 @@ self: super: with self; {
lnkparse3 = callPackage ../development/python-modules/lnkparse3 { };
loadcredential = callPackage ../development/python-modules/loadcredential { };
loca = callPackage ../development/python-modules/loca { };
localimport = callPackage ../development/python-modules/localimport { };