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

Commits on Jan 9, 2020

  1. pythonPackages.pylint-plugin-utils: init at 0.6

    kamadorueda authored and Jon committed Jan 9, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    2b7f4ed View commit details
Showing with 40 additions and 0 deletions.
  1. +38 −0 pkgs/development/python-modules/pylint-plugin-utils/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
38 changes: 38 additions & 0 deletions pkgs/development/python-modules/pylint-plugin-utils/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{ buildPythonPackage
, fetchFromGitHub
, isPy3k
, lib

# pythonPackages
, pylint
}:

buildPythonPackage rec {
pname = "pylint-plugin-utils";
version = "0.6";
disabled = !isPy3k;

src = fetchFromGitHub {
owner = "PyCQA";
repo = pname;
rev = version;
sha256 = "1zapmbczxs1phrwbd0yvpfxhljd2pyv4pi9rwggaq38lcnc325s7";
};

propagatedBuildInputs = [
pylint
];

checkPhase = ''
python tests.py
'';

meta = with lib; {
description = "Utilities and helpers for writing Pylint plugins";
homepage = "https://github.com/PyCQA/pylint-plugin-utils";
license = licenses.gpl2;
maintainers = with maintainers; [
kamadorueda
];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -4813,6 +4813,8 @@ in {
pylint = if isPy3k then callPackage ../development/python-modules/pylint { }
else callPackage ../development/python-modules/pylint/1.9.nix { };

pylint-plugin-utils = callPackage ../development/python-modules/pylint-plugin-utils { };

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

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