about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pretend/default.nix
blob: 3572d938a0dc13a9e5f4c32094be2140b4518e61 (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.8";

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

  # No tests in archive
  doCheck = false;

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