From fefac078426217cf7f4f91de4dd62b038d9ff157 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 20 Dec 2019 14:39:58 -0500 Subject: [PATCH] filter out vcs stuff --- zkapauthorizer.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/zkapauthorizer.nix b/zkapauthorizer.nix index e617ab0..bb7e5e2 100644 --- a/zkapauthorizer.nix +++ b/zkapauthorizer.nix @@ -1,4 +1,5 @@ -{ buildPythonPackage, sphinx +{ lib +, buildPythonPackage, sphinx , attrs, zope_interface, aniso8601, twisted, tahoe-lafs, privacypass , fixtures, testtools, hypothesis, pyflakes, treq, coverage , hypothesisProfile ? null @@ -15,7 +16,7 @@ buildPythonPackage rec { version = "0.0"; pname = "zero-knowledge-access-pass-authorizer"; name = "${pname}-${version}"; - src = ./.; + src = lib.cleanSource ./.; outputs = [ "out" ] ++ (if collectCoverage then [ "doc" ] else [ ]); -- GitLab