Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: febb627290b5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9f36dd3d66f2
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 21, 2020

  1. maintainers: add urbas

    urbas committed Nov 21, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    kurtmckee Kurt McKee
    Copy the full SHA
    7a9f6e1 View commit details

Commits on Nov 23, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    kurtmckee Kurt McKee
    Copy the full SHA
    f85ea6e View commit details

Commits on Nov 26, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    kurtmckee Kurt McKee
    Copy the full SHA
    9f36dd3 View commit details
Showing with 28 additions and 0 deletions.
  1. +6 −0 maintainers/maintainer-list.nix
  2. +20 −0 pkgs/development/python-modules/coapthon3/default.nix
  3. +2 −0 pkgs/top-level/python-packages.nix
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -9035,6 +9035,12 @@
githubId = 619015;
name = "Svintsov Dmitry";
};
urbas = {
email = "matej.urbas@gmail.com";
github = "urbas";
githubId = 771193;
name = "Matej Urbas";
};
uri-canva = {
email = "uri@canva.com";
github = "uri-canva";
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/coapthon3/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ buildPythonPackage, cachetools, fetchPypi, lib }:

buildPythonPackage rec {
pname = "CoAPthon3";
version = "1.0.1";

src = fetchPypi {
inherit pname version;
sha256 = "1w6bwwd3qjp4b4fscagqg9wqxpdgvf4sxgzbk2d2rjqwlkyr1lnx";
};

propagatedBuildInputs = [ cachetools ];

meta = with lib; {
description = "Python3 library to the CoAP protocol compliant with the RFC.";
homepage = "https://github.com/Tanganelli/${pname}";
license = licenses.mit;
maintainers = with maintainers; [ urbas ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -1255,6 +1255,8 @@ in {

cnvkit = callPackage ../development/python-modules/cnvkit { };

coapthon3 = callPackage ../development/python-modules/coapthon3 { };

coconut = callPackage ../development/python-modules/coconut { };

cocotb = callPackage ../development/python-modules/cocotb { };