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: 9c008bc1098c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 791f01b6bf57
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 17, 2021

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    f7481bc View commit details
  2. Merge pull request #109670 from AndersonTorres/dotty-dict

    pythonPackages.dotty-dict: init at 1.3.0
    SuperSandro2000 authored Jan 17, 2021
    Copy the full SHA
    791f01b View commit details
Showing with 28 additions and 0 deletions.
  1. +26 −0 pkgs/development/python-modules/dotty-dict/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
26 changes: 26 additions & 0 deletions pkgs/development/python-modules/dotty-dict/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib
, fetchPypi
, buildPythonPackage
, setuptools_scm
}:

buildPythonPackage rec {
pname = "dotty_dict";
version = "1.3.0";

src = fetchPypi {
inherit pname version;
sha256 = "sha256-6wA1o2KezYQ5emjx9C8elKvRw0V3oZzT6srTMe58uvA=";
};

nativeBuildInputs = [ setuptools_scm ];

doCheck = false;

meta = with lib; {
description = "Dictionary wrapper for quick access to deeply nested keys";
homepage = "https://dotty-dict.readthedocs.io";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -1917,6 +1917,8 @@ in {

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

dotty-dict = callPackage ../development/python-modules/dotty-dict { };

dot2tex = callPackage ../development/python-modules/dot2tex { inherit (pkgs) graphviz; };

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