summary refs log tree commit diff
path: root/pkgs/development/python-modules/configparser/default.nix
blob: 8e770c504c3b2009e7e6c6faf5b793e781e81563 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:

buildPythonPackage rec {
  pname = "configparser";
  version = "3.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0fi7vf09vi1588jd8f16a021m5y6ih2hy7rpbjb408xw45qb822k";
  };

  # No tests available
  doCheck = false;

  # Fix issue when used together with other namespace packages
  # https://github.com/NixOS/nixpkgs/issues/23855
  patches = [
    ./0001-namespace-fix.patch
  ];

  meta = with stdenv.lib; {
  };
}