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

buildPythonPackage rec {
  pname = "pretend";
  version = "1.0.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c90eb810cde8ebb06dafcb8796f9a95228ce796531bc806e794c2f4649aa1b10";
  };

  # No tests in archive
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://github.com/alex/pretend;
    license = licenses.bsd3;
  };
}