mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
pythonPackages.piccata: init at 1.0.1
This commit is contained in:
parent
fbfc8b1732
commit
4ca821fbce
19
pkgs/development/python-modules/piccata/default.nix
Normal file
19
pkgs/development/python-modules/piccata/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ buildPythonPackage, fetchPypi, lib, ipaddress }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "piccata";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "45f6c98c2ea809d445040888117f99bc3ee843490d86fecc5805ff5ea41508f7";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ ipaddress ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Simple CoAP (RFC7252) toolkit";
|
||||||
|
homepage = "https://github.com/NordicSemiconductor/piccata";
|
||||||
|
maintainers = with lib.maintainers; [ gebner ];
|
||||||
|
};
|
||||||
|
}
|
@ -605,6 +605,8 @@ in {
|
|||||||
|
|
||||||
phonopy = callPackage ../development/python-modules/phonopy { };
|
phonopy = callPackage ../development/python-modules/phonopy { };
|
||||||
|
|
||||||
|
piccata = callPackage ../development/python-modules/piccata {};
|
||||||
|
|
||||||
pims = callPackage ../development/python-modules/pims { };
|
pims = callPackage ../development/python-modules/pims { };
|
||||||
|
|
||||||
plantuml = callPackage ../tools/misc/plantuml { };
|
plantuml = callPackage ../tools/misc/plantuml { };
|
||||||
|
Loading…
Reference in New Issue
Block a user