Skip to content

Commit

Permalink
pythonPackages.django_silk: 3.0.4 -> 4.0.1
Browse files Browse the repository at this point in the history
update meta.homepage too
  • Loading branch information
risicle authored and Jon committed Jul 28, 2020
1 parent 703b8ef commit 91c4357
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/development/python-modules/django_silk/default.nix
Expand Up @@ -23,21 +23,23 @@

buildPythonPackage rec {
pname = "django-silk";
version = "3.0.4";
version = "4.0.1";

# pypi tarball doesn't include test project
src = fetchFromGitHub {
owner = "jazzband";
repo = "django-silk";
rev = version;
sha256 = "10542yvbchcy8hik2hw3jclb4ic89mxkw0sykag4bw9sv43xv7vx";
sha256 = "0yy9rzxvwlp2xvnw76r9hnqajlp417snam92xpb6ay0hxwslwqyb";
};
# "test_time_taken" tests aren't suitable for reproducible execution, but django's
# test runner doesn't have an easy way to ignore tests - so instead prevent it from picking
# them up as tests
postPatch = ''
substituteInPlace project/tests/test_silky_profiler.py \
--replace "def test_time_taken" "def _test_time_taken"
substituteInPlace setup.py \
--replace 'use_scm_version=True' 'version="${version}"'
'';

buildInputs = [ mock ];
Expand All @@ -54,7 +56,7 @@ buildPythonPackage rec {

meta = with stdenv.lib; {
description = "Silky smooth profiling for the Django Framework";
homepage = "https://github.com/mtford90/silk";
homepage = "https://github.com/jazzband/django-silk";
license = licenses.mit;
maintainers = with maintainers; [ ris ];
};
Expand Down

0 comments on commit 91c4357

Please sign in to comment.