summary refs log tree commit diff
path: root/pkgs/development/python-modules/pretend/default.nix
blob: 87e0e6613b1dda55ceeacefcc0d613bcecc1215a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, 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 lib; {
    homepage = "https://github.com/alex/pretend";
    license = licenses.bsd3;
  };
}