nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python-pyflakes: 1.3.0 -> 1.5.0

Fixes #25678

+24 -22
+23
pkgs/development/python-modules/pyflakes/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, isPyPy, unittest2 }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pyflakes"; 5 + version = "1.5.0"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "1x1pcca4a24k4pw8x1c77sgi58cg1wl2k38mp8a25k608pzls3da"; 11 + }; 12 + 13 + buildInputs = [ unittest2 ]; 14 + 15 + doCheck = !isPyPy; 16 + 17 + meta = with stdenv.lib; { 18 + homepage = https://launchpad.net/pyflakes; 19 + description = "A simple program which checks Python source files for errors"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ garbas ]; 22 + }; 23 + }
+1 -22
pkgs/top-level/python-packages.nix
··· 19820 19820 }; 19821 19821 }; 19822 19822 19823 - pyflakes = buildPythonPackage rec { 19824 - pname = "pyflakes"; 19825 - version = "1.3.0"; 19826 - name = "${pname}-${version}"; 19827 - 19828 - src = pkgs.fetchurl { 19829 - url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz"; 19830 - sha256 = "a4f93317c97a9d9ed71d6ecfe08b68e3de9fea3f4d94dcd1d9d83ccbf929bc31"; 19831 - }; 19832 - 19833 - buildInputs = with self; [ unittest2 ]; 19834 - 19835 - doCheck = !isPyPy; 19836 - force-rebuild = 1; # fix transient test suite error at http://hydra.nixos.org/build/45083762 19837 - 19838 - meta = { 19839 - homepage = https://launchpad.net/pyflakes; 19840 - description = "A simple program which checks Python source files for errors"; 19841 - license = licenses.mit; 19842 - maintainers = with maintainers; [ garbas ]; 19843 - }; 19844 - }; 19823 + pyflakes = callPackage ../development/python-modules/pyflakes { }; 19845 19824 19846 19825 pyftgl = buildPythonPackage rec { 19847 19826 name = "pyftgl-0.4b";