Merge pull request #187461 from newAM/pep8-naming

This commit is contained in:
Sandro 2022-08-19 21:30:08 +02:00 committed by GitHub
commit cfe12e8c8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, fetchPypi
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, flake8
, python
}:
@ -9,11 +10,22 @@ buildPythonPackage rec {
pname = "pep8-naming";
version = "0.13.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Ovd82qnHll98haVs1Xk1RVPJu9P98weKd28S21TdaUQ=";
src = fetchFromGitHub {
owner = "PyCQA";
repo = pname;
rev = version;
sha256 = "sha256-NG4hLZcOMKprUyMnzkHRmUCFGyYgvT6ydBQNpgWE9h0=";
};
patches = [
# Fixes tests for flake8 => 5
# Remove on next release
(fetchpatch {
url = "https://github.com/PyCQA/pep8-naming/commit/c8808a0907f64b5d081cff8d3f9443e5ced1474e.patch";
sha256 = "sha256-4c+a0viS0rXuxj+TuIfgrKZjnrjiJjDoYBbNp3+6Ed0=";
})
];
propagatedBuildInputs = [
flake8
];