mirror of
https://github.com/denismhz/flake.git
synced 2025-11-09 16:16:23 +01:00
25 lines
423 B
Nix
25 lines
423 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ZipUnicode";
|
|
version = "1.1.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "";
|
|
homepage = "https://github.com/lovvskillz/python-discord-webhook";
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
} |