1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "should-dsl";
9 version = "2.1.2";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit version;
14 pname = "should_dsl";
15 sha256 = "0ai30dxgygwzaj9sgdzyfr9p5b7gwc9piq59nzr4xy5x1zcm7xrn";
16 };
17
18 # There are no tests
19 doCheck = false;
20
21 meta = with lib; {
22 description = "Should assertions in Python as clear and readable as possible";
23 homepage = "https://github.com/nsi-iff/should-dsl";
24 license = licenses.mit;
25 maintainers = with maintainers; [ jluttine ];
26 };
27}