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: 82773f457c8f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f5617ff2948d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 2, 2020

  1. python37Packages.pytest-pylint: 0.14.1 -> 0.15.1

    r-ryantm authored and Jon committed Apr 2, 2020
    Copy the full SHA
    6d6dc97 View commit details
  2. pythonPackages.pytest-pylint: disable for python2

    Jonathan Ringer committed Apr 2, 2020
    Copy the full SHA
    f5617ff View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/development/python-modules/pytest-pylint/default.nix
8 changes: 5 additions & 3 deletions pkgs/development/python-modules/pytest-pylint/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
, pylint
, six
@@ -9,11 +10,12 @@

buildPythonPackage rec {
pname = "pytest-pylint";
version = "0.14.1";
version = "0.15.1";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "1v6jqxbvzaw6v3xxwd689agy01k0j06q5c3q8gn2f3jlkrvylf4c";
sha256 = "0sbmnw3bly4pry5lp6q6g0r8xzaxwbdlf0k19k8pygkhllnj6gnx";
};

buildInputs = [ pytestrunner ];
@@ -29,7 +31,7 @@ buildPythonPackage rec {

meta = with lib; {
description = "pytest plugin to check source code with pylint";
homepage = https://github.com/carsongee/pytest-pylint;
homepage = "https://github.com/carsongee/pytest-pylint";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};