Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / should-dsl / default.nix
blob444e04b7f36f8555ff4da548ca529c0ef99a0113
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "should-dsl";
5   version = "2.1.2";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit version;
10     pname = "should_dsl";
11     sha256 = "0ai30dxgygwzaj9sgdzyfr9p5b7gwc9piq59nzr4xy5x1zcm7xrn";
12   };
14   # There are no tests
15   doCheck = false;
17   meta = with lib; {
18     description = "Should assertions in Python as clear and readable as possible";
19     homepage = "http://www.should-dsl.info/";
20     license = licenses.mit;
21     maintainers = with maintainers; [ jluttine ];
22   };