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: ea0aea72805e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: de8c33e705d9
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Aug 18, 2019

  1. python3Packages.Kconfiglib: init at 10.36.0

    python library to deal with kernel Kconfig system.
    teto authored and FRidh committed Aug 18, 2019

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    de8c33e View commit details
Showing with 23 additions and 0 deletions.
  1. +21 −0 pkgs/development/python-modules/kconfiglib/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
21 changes: 21 additions & 0 deletions pkgs/development/python-modules/kconfiglib/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
pname = "kconfiglib";
version = "10.36.0";

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

# doesnt work out of the box but might be possible
doCheck = false;

meta = with lib; {
description = "A flexible Python 2/3 Kconfig implementation and library";
homepage = https://github.com/ulfalizer/Kconfiglib;
license = licenses.isc;
maintainers = with maintainers; [ teto ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -675,6 +675,8 @@ in {

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

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

lammps-cython = callPackage ../development/python-modules/lammps-cython {
mpi = pkgs.openmpi;
};