pythonPackages.tftpy: init 0.8.2
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
parent
84de8e15a2
commit
4a04b823fb
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/tftpy/default.nix
Normal file
28
pkgs/development/python-modules/tftpy/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -12003,6 +12003,8 @@ self: super: with self; {
|
|||
|
||||
tflearn = callPackage ../development/python-modules/tflearn { };
|
||||
|
||||
tftpy = callPackage ../development/python-modules/tftpy { };
|
||||
|
||||
tgcrypto = callPackage ../development/python-modules/tgcrypto { };
|
||||
|
||||
theano-pymc = callPackage ../development/python-modules/theano-pymc { };
|
||||
|
|
Loading…
Reference in a new issue