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

Commits on Nov 11, 2018

  1. gin-config: init

    jethrokuan authored and FRidh committed Nov 11, 2018
    Copy the full SHA
    baeb8bd View commit details
  2. fix maintainer

    jethrokuan authored and FRidh committed Nov 11, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f11cd81 View commit details
  3. add option to build without Tensorflow

    jethrokuan authored and FRidh committed Nov 11, 2018
    Copy the full SHA
    78e5578 View commit details
  4. fix eval

    Ma27 authored and FRidh committed Nov 11, 2018
    Copy the full SHA
    32d8215 View commit details
  5. remove withTensorflow option

    jethrokuan authored and FRidh committed Nov 11, 2018
    Copy the full SHA
    2b4a70d View commit details
  6. don't propogate tensorflow

    jethrokuan authored and FRidh committed Nov 11, 2018
    Copy the full SHA
    c98731b View commit details
  7. remove tests

    PyPI archive does not contain tests
    jethrokuan authored and FRidh committed Nov 11, 2018
    Copy the full SHA
    5165ecb View commit details
  8. remove absl-py, change to buildInputs

    jethrokuan authored and FRidh committed Nov 11, 2018
    Copy the full SHA
    3723b2d View commit details
  9. change to propogatedBuildInputs

    jethrokuan authored and FRidh committed Nov 11, 2018
    Copy the full SHA
    0a82eb4 View commit details
  10. s/propogatedBuildInputs/propagatedBuildInputs

    Ma27 authored and FRidh committed Nov 11, 2018
    Copy the full SHA
    3c4f709 View commit details
Showing with 31 additions and 0 deletions.
  1. +29 −0 pkgs/development/python-modules/gin-config/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
29 changes: 29 additions & 0 deletions pkgs/development/python-modules/gin-config/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
, enum34
}:

buildPythonPackage rec {
pname = "gin-config";
version = "0.1.1.2";

src = fetchPypi {
inherit pname version;
sha256 = "1zqzhg8nqdqjx0sjrsrs9bpyiaqqlyihqhhy2ijrpp62x9rjllga";

};

propagatedBuildInputs = [ six enum34 ];

# PyPI archive does not ship with tests
doCheck= false;

meta = with lib; {
homepage = https://github.com/google/gin-config;
description = "Gin provides a lightweight configuration framework for Python, based on dependency injection.";
license = licenses.asl20;
maintainers = with maintainers; [ jethro ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -362,6 +362,8 @@ in {

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

gin-config = callPackage ../development/python-modules/gin-config { };

globus-sdk = callPackage ../development/python-modules/globus-sdk { };

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