pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / idris-modules / pipes.nix
blob1402a2facee17e9ce8c59221043ee05532fe3d49
1 { build-idris-package
2 , fetchFromGitHub
3 , lib
4 }:
5 build-idris-package  {
6   pname = "pipes";
7   version = "2017-12-02";
9   src = fetchFromGitHub {
10     owner = "QuentinDuval";
11     repo = "IdrisPipes";
12     rev = "888abe405afce42015014899682c736028759d42";
13     sha256 = "1dxbqzg0qy7lkabmkj0qypywdjz5751g7h2ql8b2253dy3v0ndbs";
14   };
16   meta = {
17     description = "Composable and effectful production, transformation and consumption of streams of data";
18     homepage = "https://github.com/QuentinDuval/IdrisPipes";
19     license = lib.licenses.bsd3;
20     maintainers = [ lib.maintainers.brainrape ];
21   };