mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
4a04b823fb
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
29 lines
618 B
Nix
29 lines
618 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tftpy";
|
|
version = "0.8.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-4dGmgO/YjroXazURdYRCUwZzkqmw+LgViOP/K557u1s=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "tftpy" ];
|
|
|
|
meta = {
|
|
description = "Pure Python TFTP library";
|
|
homepage = "https://github.com/msoulier/tftpy";
|
|
changelog = "https://github.com/msoulier/tftpy/releases/tag/${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ otavio ];
|
|
};
|
|
}
|