ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / django-sesame / default.nix
blobe24fff1efe77592e4d5ba22c20ff4bafce00ea26
1 { lib, buildPythonPackage, fetchFromGitHub
2 , django }:
4 buildPythonPackage rec {
5   pname = "django-sesame";
6   version = "1.7";
8   src = fetchFromGitHub {
9     owner = "aaugustin";
10     repo = pname;
11     rev = version;
12     sha256 = "0k8s44zn2jmasp0w064vrx685fn4pbmdfx8qmhkab1hd5ys6pi44";
13   };
15   checkInputs = [ django ];
17   checkPhase = ''
18     make test
19   '';
21   meta = with lib; {
22     description = "URLs with authentication tokens for automatic login";
23     homepage = "https://github.com/aaugustin/django-sesame";
24     license = licenses.bsd3;
25     maintainers = with maintainers; [ elohmeier ];
26   };