mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
pythonPackages.logfury: New expression 0.1.2
This will be needed by the upcoming release of backblaze-b2
This commit is contained in:
parent
4565378641
commit
d9b27fa623
|
@ -7286,6 +7286,28 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
logfury = buildPythonPackage rec {
|
||||||
|
name = "logfury-${version}";
|
||||||
|
version = "0.1.2";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "mirror://pypi/l/logfury/${name}.tar.gz";
|
||||||
|
sha256 = "1lywirv3d1lw691mc4mfpz7ak6r49klri43bbfgdnvsfppxminj2";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ self.funcsigs
|
||||||
|
self.six
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with pkgs.stdenv.lib; {
|
||||||
|
description = "Logfury is for python library maintainers. It allows for responsible, low-boilerplate logging of method calls.";
|
||||||
|
homepage = "https://github.com/ppolewicz/logfury";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ jwiegley ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
ndg-httpsclient = buildPythonPackage rec {
|
ndg-httpsclient = buildPythonPackage rec {
|
||||||
version = "0.4.2";
|
version = "0.4.2";
|
||||||
name = "ndg-httpsclient-${version}";
|
name = "ndg-httpsclient-${version}";
|
||||||
|
|
Loading…
Reference in a new issue