python3.pkgs.gsm0338: init at 1.1.0
This commit is contained in:
parent
6d1c5dd1dc
commit
51ff54b5cc
36
pkgs/development/python-modules/gsm0338/default.nix
Normal file
36
pkgs/development/python-modules/gsm0338/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, poetry-core
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage {
|
||||||
|
pname = "gsm0338";
|
||||||
|
version = "1.1.0";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dsch";
|
||||||
|
repo = "gsm0338";
|
||||||
|
rev = "1c036bd3b656b5075fdc221cbc578c4a47b42b1f";
|
||||||
|
hash = "sha256-EkUVd4d4Te8brHerygDc6KQSpiX11NrHYkcZSDRi05w=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "gsm0338" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python codec for GSM 03.38";
|
||||||
|
homepage = "https://github.com/dsch/gsm0338";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ flokli janik ];
|
||||||
|
};
|
||||||
|
}
|
@ -4590,6 +4590,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
gsd = callPackage ../development/python-modules/gsd { };
|
gsd = callPackage ../development/python-modules/gsd { };
|
||||||
|
|
||||||
|
gsm0338 = callPackage ../development/python-modules/gsm0338 { };
|
||||||
|
|
||||||
gspread = callPackage ../development/python-modules/gspread { };
|
gspread = callPackage ../development/python-modules/gspread { };
|
||||||
|
|
||||||
gssapi = callPackage ../development/python-modules/gssapi {
|
gssapi = callPackage ../development/python-modules/gssapi {
|
||||||
|
Loading…
Reference in New Issue
Block a user