Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / should-dsl / default.nix
blob7510ba88d1d527044ca2e954c417faff3bccc0dc
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "should-dsl";
5   version = "2.1.2";
7   src = fetchPypi {
8     inherit version;
9     pname = "should_dsl";
10     sha256 = "0ai30dxgygwzaj9sgdzyfr9p5b7gwc9piq59nzr4xy5x1zcm7xrn";
11   };
13   # There are no tests
14   doCheck = false;
16   meta = with lib; {
17     description = "Should assertions in Python as clear and readable as possible";
18     homepage = "http://www.should-dsl.info/";
19     license = licenses.mit;
20     maintainers = with maintainers; [ jluttine ];
21   };