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

buildPythonPackage rec {
  pname = "chai";
  version = "1.1.2";
  name = "${pname}-${version}";

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

  meta = with stdenv.lib; {
    description = "Mocking, stubbing and spying framework for python";
  };
}