summary refs log tree commit diff
path: root/pkgs/development/python-modules/markupsafe/default.nix
blob: 6a6e06cd3177b9ecf72eceb9d46849255fa4f85c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "MarkupSafe";
  version = "1.1.1";

 src = fetchPypi {
    inherit pname version;
    sha256 = "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b";
  };

  meta = with lib; {
    description = "Implements a XML/HTML/XHTML Markup safe string";
    homepage = "http://dev.pocoo.org";
    license = licenses.bsd3;
    maintainers = with maintainers; [ domenkozar ];
  };

}