anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / should-dsl / default.nix
blob5ff8faa1b862cf308e98e8169d2092bbd608d493
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "should-dsl";
9   version = "2.1.2";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit version;
14     pname = "should_dsl";
15     sha256 = "0ai30dxgygwzaj9sgdzyfr9p5b7gwc9piq59nzr4xy5x1zcm7xrn";
16   };
18   # There are no tests
19   doCheck = false;
21   meta = with lib; {
22     description = "Should assertions in Python as clear and readable as possible";
23     homepage = "http://www.should-dsl.info/";
24     license = licenses.mit;
25     maintainers = with maintainers; [ jluttine ];
26   };